home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOpus Plus
/
DOpus Plus.iso
/
Tutorial
/
ARexx Tutorial
/
TuteRexx
/
OpusAWeb.dopus5
< prev
next >
Wrap
Text File
|
1998-08-10
|
474b
|
25 lines
/*
* OpusAWebFTP.dopus5
* $VER: OpusAWebFTP.rexx 1.2 (14.5.96)
*
* Copy to your Dopus5:Arexx directory
* Add these lines to the Setting/Network 3: External programs
*
* Command: Sys:Rexxc/RX
* Arguments: Dopus5:Arexx/OpusAWebFTP.dopus5 %s %s
*/
address dopus.1
if ~show('P','DOPUS.1') then exit 20
parse arg host dir .
if host ~= '' then do
dopus front
if dir ~= '' then command ftpconnect host 'dir' dir
else command ftpconnect host
end
exit